[XEND] Fix missing serial and localtime args in device model for HVM
authorAlastair Tse <atse@xensource.com>
Fri, 1 Dec 2006 10:47:57 +0000 (10:47 +0000)
committerAlastair Tse <atse@xensource.com>
Fri, 1 Dec 2006 10:47:57 +0000 (10:47 +0000)
Signed-off-by: Alastair Tse <atse@xensource.com>
tools/python/xen/xend/XendConfig.py

index 3d79c657c91656e911e45ff77c3a5d0e15494198..3bb0ba4cd9ceef353e6b288011643f7dbdbdd3c6 100644 (file)
@@ -186,19 +186,21 @@ LEGACY_IMAGE_HVM_CFG = [
     ('pae', int),
     ('apic', int),
     ('acpi', int),
-    ('serial', str),
 ]
 
 LEGACY_IMAGE_HVM_DEVICES_CFG = [
+    ('acpi', int),    
     ('boot', str),
     ('fda', str),
     ('fdb', str),
-    ('soundhw', str),
     ('isa', str),
-    ('vcpus', int),
-    ('acpi', int),
+    ('keymap', str),    
+    ('localtime', str),    
+    ('serial', str),    
+    ('soundhw', str),
     ('usb', str),
-    ('usbdevice', str),
+    ('usbdevice', str),    
+    ('vcpus', int),
 ]